Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/077-sortable list

style.css cody/solygambas/html-css-javascript-projects/077-sortable list/style.css
153 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Blinker:wght@400;700&display=swap");

:root {
--border-color: #e3e5e4;
--background-color: #fff;
--background-secondary-color: #c3c7ca;
--draggable-color: #eaeaea;
--text-color: #34444f;
sortable list cody/solygambas/html-css-javascript-projects/077-sortable list/index.html
341 Views
0 Comments
<!-- Reference: https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
script.js cody/solygambas/html-css-javascript-projects/077-sortable list/script.js
210 Views
0 Comments
const draggableList = document.getElementById("draggable-list");
const check = document.getElementById("check");

const richestPeople = [
"Jeff Bezos",
"Bill Gates",
"Bernard Arnault",
"Warren Buffett",